home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin MDIForm frmMNotepad
- Caption = "My Text Editor Program"
- ClientHeight = 4020
- ClientLeft = 1095
- ClientTop = 1770
- ClientWidth = 7365
- Height = 4710
- Icon = MNOTEPAD.FRX:0000
- Left = 1035
- LinkTopic = "MDIForm1"
- Top = 1140
- Width = 7485
- Begin Menu mnuFile
- Caption = "&File"
- Begin Menu mnuNew
- Caption = "&New"
- End
- Begin Menu mnuExit
- Caption = "E&xit"
- End
- End
- Option Explicit
- Sub mnuExit_Click ()
- End
- End Sub
- Sub mnuNew_Click ()
- Dim frmNewChild As New frmDocument
- Static DocNumber
- If DocNumber = 0 Then
- DocNumber = 1
- End If
- DocNumber = DocNumber + 1
- frmNewChild.Show
- frmMNotepad.ActiveForm.Caption = "<" + DocNumber + "> Untitled"
- End Sub
-